VBScript program to document the properties in Active Directory that are replicated throughout
the domain. The program uses ADO to search the Schema container for attributes with the property
"IsMemberOfPartialAttributeSet" equal to True. This means the attribute is in the Partial Attribute Set (PAS), so it replicates to the Global Catalog (GC).
The program is designed to be run at a command prompt using the cscript host. The output can be
redirected to a text file. For example:
cscript //nologo ReplicatedAttr.vbs > Replicated.txt
This program should work on any 32 or 64-bit Windows client that can log onto the domain. Windows NT and
Windows 98/95 clients should have DSClient installed. If DSClient is not installed, they need WSH
and ADSI installed.
ReplicatedAttr.txt <<-- Click here to view or download the program